home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / madness / Imakefile next >
Makefile  |  1995-05-03  |  805b  |  23 lines

  1. #
  2. #    Imakefile for madness, by Ron Record
  3. #
  4. # Comment out the next line if you don't want/need the delay functionality
  5. # (e.g. your system isn't fast enough to make inserting a nap() useful)
  6.           DELAY = -DUSE_DELAY
  7. # If you are using the delay functionality (above line uncommented), then
  8. # comment out the next line if you want to use nap() rather than itimers
  9.           SLEEP = -DHAS_ITIMER
  10. # and uncomment the next line if you're using nap() on an SCO system
  11. #        NAPLIB = -lx
  12.         DEPLIBS = $(DEPXLIB)
  13. LOCAL_LIBRARIES = ../lib/libXrr.a XmClientLibs 
  14.   SYS_LIBRARIES = -lm $(NAPLIB)
  15.        INCLUDES = -I.
  16.          CFLAGS = -O $(INCLUDES) $(SLEEP) $(DELAY)
  17.            SRCS = madness.c
  18.            OBJS = madness.o
  19.  
  20. ComplexProgramTarget(madness)
  21.  
  22. InstallProgram(madness, $DESTDIR/usr/bin/X11)
  23.